home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
pastespr.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
153b
|
11 lines
Rem Draw with a "brush"
CLS
brush = LoadSprite("Bullet")
While TRUE
x = MouseX
y = MouseY
SetSprite brush To x,y
If Button Then PasteSprite brush
Wend